home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / cismsg15.zip / IMPORT.BAT < prev    next >
DOS Batch File  |  1993-05-30  |  2KB  |  91 lines

  1. @Echo off
  2.  
  3. rem  If messages are not being handled like you want
  4. rem  ie:  you want them deleted after import  -- just
  5. rem  delete IMPORT.EXE  (Compiled Batch file by BUILDER)
  6. rem  and make changes to proper section below.
  7. rem  (Now you know why I call my Company BAT-Systems!)
  8.  
  9.  
  10.  
  11. If "%1" == "Oz1msg" goto Oz1msg
  12. If "%1" == "Oz2msg" goto Oz2msg
  13. If "%1" == "Tc1msg" goto Tc1msg
  14. If "%1" == "Oz1cat" goto Oz1cat
  15. If "%1" == "Oz2cat" goto Oz1cat
  16. If "%1" == "Tc1cat" goto Tc1cat
  17.  
  18.  
  19. :Oz1msg
  20. rem Handles OzCIS message import for another directory
  21.  
  22. rem Oz1msg
  23. @echo off
  24. del *.msg > junk
  25. copy %2%3 %4*.msg > Junk
  26. rem del %2%3 > Junk
  27. cistats > junk
  28. GOTO DONE
  29.  
  30.  
  31.  
  32.  
  33. :Oz2msg
  34. rem Handles OzCIS message import for current directory
  35.  
  36. rem Oz2msg
  37. @echo off
  38. del *.msg > junk
  39. copy *.mes *.msg > junk
  40. rem del d:\ozcis\cisdata\*.mes > junk
  41. cistats > junk
  42. GOTO DONE
  43.  
  44.  
  45. :Tc1msg
  46. rem Handles TapCis message import for another directory
  47.  
  48. rem Tc1msg
  49. @echo off
  50. del *.msg > junk
  51. copy %2%3 %4 > Junk
  52. rem del %2%3 > Junk
  53. cistats > junk
  54. GOTO DONE
  55.  
  56.  
  57. :Oz1cat
  58. rem Handles OzCIS catalog import for another directory
  59.  
  60. rem Oz1cat
  61. @Echo off
  62. Del *.cat > junk
  63. copy %2%3 %4*.cat > Junk
  64. dls > nul
  65. GOTO DONE
  66.  
  67.  
  68. :Oz2cat
  69. rem Handles OzCIS catalog import for current directory
  70.  
  71. rem Oz2cat
  72. @echo off
  73. del *.bat > nul
  74. copy *.l?? *.cat > junk
  75. dls > nul
  76. GOTO DONE
  77.  
  78.  
  79. :Tc1cat
  80. rem Handles TapCIS catalog import for another directory
  81.  
  82. rem Tc1cat
  83. @echo off
  84. copy %2%3 %4 > Junk
  85. dls > nul
  86. GOTO DONE
  87.  
  88.  
  89. :DONE
  90.  
  91.